home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / pipe.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  53 lines

  1. /* 
  2.  * pipe.c --
  3.  *
  4.  *    Procedure to map from Unix pipe system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: pipe.c,v 1.1 88/06/19 14:31:40 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18. #include <errno.h>
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * pipe --
  25.  *
  26.  *    Procedure to map from Unix pipe system call to Sprite Fs_CreatePipe
  27.  *    system call.
  28.  *
  29.  * Results:
  30.  *    Error returned if error returned from Fs_CreatePipe. Otherwise
  31.  *    UNIX_SUCCESS.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. pipe(filedes)
  41.     int    filedes[2];            /* array of stream identifiers */    
  42. {
  43.     ReturnStatus status;    /* result returned by Fs_CreatePipe */
  44.  
  45.     status = Fs_CreatePipe(&(filedes[0]), &(filedes[1]));
  46.     if (status != SUCCESS) {
  47.     errno = Compat_MapCode(status);
  48.     return(UNIX_ERROR);
  49.     } else {
  50.     return(UNIX_SUCCESS);
  51.     }
  52. }
  53.